Namespace - LJCNetCommon
Parameters
author - The author.
textState - The current text state values.
description - The description.
keywords - The keywords.
charSet - The charset value.
Returns
The added <meta> elements.
Syntax
C# |
public String Metas(String author, TextState textState, String description = null, String keywords = null, String charSet = utf-8)
|
Appends common <meta> elements.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
hb.Metas("Mr. Smith", textState, "The Description");
var result = hb.ToString();
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.